home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / gfx / nsCUPSShim.h < prev    next >
C/C++ Source or Header  |  2006-05-08  |  5KB  |  124 lines

  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* ex: set tabstop=8 softtabstop=4 shiftwidth=4 expandtab: */
  3. /* ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is the Mozilla PostScript driver printer list component.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Kenneth Herron <kherron+mozilla@fmailbox.com>
  20.  * Portions created by the Initial Developer are Copyright (C) 2004
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. #ifndef nsCUPSShim_h___
  40. #define nsCUPSShim_h___
  41.  
  42. #include "prtypes.h"
  43. #include "psSharedCore.h"
  44.  
  45.  
  46. /* Various CUPS data types. We don't #include cups headers to avoid
  47.  * requiring CUPS to be installed on the build host (and to avoid having
  48.  * to test for CUPS in configure).
  49.  */
  50. typedef struct                          /**** Printer Options ****/
  51. {
  52.     char          *name;                  /* Name of option */
  53.     char          *value;                 /* Value of option */
  54. } cups_option_t;
  55.  
  56. typedef struct               /**** Destination ****/
  57. {
  58.     char          *name,       /* Printer or class name */
  59.                   *instance;   /* Local instance name or NULL */
  60.     int           is_default;  /* Is this printer the default? */
  61.     int           num_options; /* Number of options */
  62.     cups_option_t *options;    /* Options */
  63. } cups_dest_t;
  64.  
  65. typedef cups_dest_t* (PR_CALLBACK *CupsGetDestType)(const char *printer,
  66.                                                     const char *instance,
  67.                                                     int num_dests, 
  68.                                                     cups_dest_t *dests);
  69. typedef int (PR_CALLBACK *CupsGetDestsType)(cups_dest_t **dests);
  70. typedef int (PR_CALLBACK *CupsFreeDestsType)(int         num_dests,
  71.                                              cups_dest_t *dests);
  72. typedef int (PR_CALLBACK *CupsPrintFileType)(const char    *printer,
  73.                                              const char    *filename,
  74.                                              const char    *title,
  75.                                              int           num_options,
  76.                                              cups_option_t *options);
  77. typedef int (PR_CALLBACK *CupsTempFdType)(char *filename,
  78.                                           int   length);
  79. typedef int (PR_CALLBACK *CupsAddOptionType)(const char    *name,
  80.                                              const char    *value,
  81.                                              int           num_options,
  82.                                              cups_option_t **options);
  83.  
  84. struct PRLibrary;
  85.  
  86. class NS_PSSHARED nsCUPSShim {
  87.     public:
  88.         nsCUPSShim() : mCupsLib(nsnull) { }
  89.         ~nsCUPSShim();
  90.  
  91.         /**
  92.          * Initialize this object. Attempt to load the CUPS shared
  93.          * library and find function pointers for the supported
  94.          * functions (see below).
  95.          * @return PR_FALSE if the shared library could not be loaded, or if
  96.          *                  any of the functions could not be found.
  97.          *         PR_TRUE  for successful initialization.
  98.          */
  99.         PRBool Init();
  100.  
  101.         /**
  102.          * @return PR_TRUE  if the object was initialized successfully.
  103.          *         PR_FALSE otherwise.
  104.          */
  105.         PRBool IsInitialized() { return nsnull != mCupsLib; }
  106.  
  107.         /* Function pointers for supported functions. These are only
  108.          * valid after successful initialization.
  109.          */
  110.         CupsAddOptionType   mCupsAddOption;
  111.         CupsFreeDestsType   mCupsFreeDests;
  112.         CupsGetDestType     mCupsGetDest;
  113.         CupsGetDestsType    mCupsGetDests;
  114.         CupsPrintFileType   mCupsPrintFile;
  115.         CupsTempFdType      mCupsTempFd;
  116.  
  117.     private:
  118.         PRLibrary *mCupsLib;
  119. };
  120.  
  121.  
  122.  
  123. #endif /* nsCUPSShim_h___ */
  124.